projects
/
gpsbabel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d13ff44
)
Add webcam handling.
author
robertl
<robertl>
Thu, 15 Apr 2004 13:42:20 +0000
(13:42 +0000)
committer
robertl
<robertl>
Thu, 15 Apr 2004 13:42:20 +0000
(13:42 +0000)
defs.h
patch
|
blob
|
history
gpx.c
patch
|
blob
|
history
util.c
patch
|
blob
|
history
diff --git
a/defs.h
b/defs.h
index 0bdde95d7d46981510a68254bfde12e528d94253..d08d711464cb063d7c7e37ec8c653e60e62270a5 100644
(file)
--- a/
defs.h
+++ b/
defs.h
@@
-85,7
+85,8
@@
typedef enum {
gt_virtual,
gt_letterbox,
gt_event,
- gt_suprise
+ gt_suprise,
+ gt_webcam
} geocache_type;
typedef enum {
diff --git
a/gpx.c
b/gpx.c
index 3f141638f73a32a4767845e3c7cf1caec98b54a6..0646688e5c21ff2816584ad6ffb8e8544909f38a 100644
(file)
--- a/
gpx.c
+++ b/
gpx.c
@@
-452,6
+452,7
@@
gs_type_mapping{
{ gt_multi, "Multi-Cache" },
{ gt_virtual, "Virtual cache" },
{ gt_event, "Event cache" },
+ { gt_webcam, "Webcam Cache" },
{ gt_suprise, "Unknown cache" },
};
diff --git
a/util.c
b/util.c
index 8e19674419696c725e22e5d34dbf8ff819ee7ef7..010684d8a3a827804be2eb45a841daf51835ac79 100644
(file)
--- a/
util.c
+++ b/
util.c
@@
-515,6
+515,8
@@
get_cache_icon(const waypoint *waypointp)
return "Event Cache";
case gt_suprise:
return "Unknown Cache";
+ case gt_webcam:
+ return "Webcam Cache";
default:
break;
}